home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue51 / Construc / MainUnit.pas < prev    next >
Pascal/Delphi Source File  |  1999-09-27  |  546b  |  40 lines

  1. unit MainUnit;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   StdCtrls;
  6.  
  7. type
  8.   TForm1 = class(TForm)
  9.     Label1: TLabel;
  10.   private
  11.     { Private declarations }
  12.   public
  13.     { Public declarations }
  14.   end;
  15.  
  16. var
  17.   Form1: TForm1;
  18.  
  19.   procedure Log(Str: String);
  20.  
  21. implementation
  22. {$R *.DFM}
  23.  
  24. procedure Log(Str: String);
  25. var
  26.   f: Text;
  27. begin
  28. {
  29.   System.Assign(f,'c:\trace.log');
  30.   Append(f);
  31.   try
  32.     writeln(f,Str)
  33.   finally
  34.     System.Close(f)
  35.   end
  36. }  
  37. end;
  38.  
  39. end.
  40.